Outdated
This is now an official feature of PlutoUI!
https://github.com/JuliaPluto/PlutoUI.jl/pull/164
https://github.com/JuliaPluto/PlutoUI.jl/pull/163
👀 Reading hidden code
md"""
# Outdated
This is now an official feature of PlutoUI!
https://github.com/JuliaPluto/PlutoUI.jl/pull/164
https://github.com/JuliaPluto/PlutoUI.jl/pull/163
"""
missing
👀 Reading hidden code
# sleep(1);
A slider:
and a checkbox:
👀 Reading hidden code
👀 Reading hidden code
using PlutoUI
confirm_combine (generic function with 2 methods)
function confirm_combine(node, label="Submit")
id = String(rand('a':'z', 10))
"""
<div>
<span>
$(repr(MIME"text/html"(), node))
</span>
<input type="submit" value="$(Markdown.htmlesc(label))">
<script>
const div = currentScript.parentElement
const inputs = div.querySelectorAll("span input")
const values = Array(inputs.length)
inputs.forEach(async (el,i) => {
el.oninput = (e) => {
e.stopPropagation()
}
const gen = Generators.input(el)
while(true) {
values[i] = await gen.next().value
div.value = values
}
})
const submit = div.querySelector("input[type=submit]")
submit.onclick = () => {
div.dispatchEvent(new CustomEvent("input", {}))
}
</script>
</div>
""" |> HTML
end
👀 Reading hidden code